home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / hydra_vnc.nasl < prev    next >
Text File  |  2005-03-31  |  3KB  |  100 lines

  1. #TRUSTED 9462f856966b5faa1de42cd2d7bc39de7355dca332e6b3a3756c1cebe4bda42b57cfc3fd9b194ee8a9467590b5a9b625cd42c3e856b13dc4669c3459f822ef1069bc09444204f6da93c58268311245164d4f2d74ec48b86f157389d9d04eda79a3e9114c71ab533867277a47e828e6b5bde076b32ee83071b018b05b6919a2c40d6372baaf6c9d7b26043b94d779d80f0b0ed2ca5307763e75250f81f3e91761d42396f630ffcb49efdf80d695a151920b5c40b1ef69ec74e399eadfc287e6763dce80f797ac09f42098416ca7d4051c3acc32ea477b14b88cbf5b5085d79eaf06c70b469e72b8c6bc4f14ac0dc073aa2479a62c0fe2a36be4d650ebbe2558e39081a9ee837ff1326141e4bceadc0f0284d61b150e1a2018d9c2a8b721e3e0a24d62328f8aed3312e9bfd56851dfdc99ed8f0a36a02747da3a7562c74f13ddf907049669377cdd4e0a3a1d289348ee9e45870d14ac834a84e1efbe7bfabc7c20be528f1915e75ddb10fa7b8af5fe1025234fd6ef0540536f7d3c6f950d1985346304e26787337b5e15c9e53cae71bde59782ffdd446f39bddf2e2526796640a93260252fad85d64789a73c752e977f9be73a34cbb760f511509fe626b19d1a04f15b6890e642ca7ded8e8027fe3f27c765fd9cb0cec72559982529728e3136ba1bf4bee751ff5c9e231cd0204d7f27685c25a24794c6a8dbe61a81c37d89dab7
  2. #
  3. # This script was written by Michel Arboi <arboi@alussinan.org>
  4. #
  5. # GPL
  6. #
  7.  
  8. if (! defined_func("script_get_preference_file_location")) exit(0);
  9. if (! find_in_path("hydra") ) exit(0);
  10.  
  11.  
  12. if(description)
  13. {
  14.  script_id(15890);
  15.  script_version ("1.1");
  16.  name["english"] = "Hydra: VNC";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. This plugin runs Hydra to find VNC passwords by brute force.
  21.  
  22. See the section 'plugins options' to configure it
  23. ";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Brute force VNC authentication with Hydra";
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_ATTACK);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  33.  script_family(english:"Brute force attacks");
  34.  script_require_keys("Secret/hydra/passwords_file");
  35.  script_require_ports("Services/vnc", 5900);
  36. # We are not able to detect VNC... yet
  37.  script_dependencies("hydra_options.nasl", "find_service.nes", "doublecheck_std_services.nasl");
  38.  exit(0);
  39. }
  40.  
  41. #
  42.  
  43. throrough = get_kb_item("global_settings/thorough_tests");
  44. if ("yes" >!< throrough) exit(0);
  45. passwd = get_kb_item("Secret/hydra/passwords_file");
  46. if (passwd == NULL) exit(0);
  47.  
  48. port = get_kb_item("Services/vnc");
  49. if (! port) port = 5900;
  50. if (! get_port_state(port)) exit(0);
  51.  
  52. timeout = get_kb_item("/tmp/hydra/timeout"); timeout = int(timeout);
  53. tasks = get_kb_item("/tmp/hydra/tasks"); task = int(tasks);
  54.  
  55. empty = get_kb_item("/tmp/hydra/empty_password");
  56. exit_asap = get_kb_item("/tmp/hydra/exit_ASAP");
  57. tr = get_kb_item("Transports/TCP/"+port);
  58.  
  59. i = 0;
  60. argv[i++] = "hydra";
  61. argv[i++] = "-s"; argv[i++] = port;
  62. argv[i++] = "-P"; argv[i++] = passwd;
  63. if (empty)
  64. {
  65.   argv[i++] = "-e"; argv[i++] = "n";
  66. }
  67. if (exit_asap) argv[i++] = "-f";
  68. if (tr >= ENCAPS_SSLv2) argv[i++] = "-S";
  69.  
  70. if (timeout > 0)
  71. {
  72.   argv[i++] = "-w";
  73.   argv[i++] = timeout;
  74. }
  75. if (tasks > 0)
  76. {
  77.   argv[i++] = "-t";
  78.   argv[i++] = tasks;
  79. }
  80.  
  81. argv[i++] = get_host_ip();
  82. argv[i++] = "vnc";
  83.  
  84. report = "";
  85. results = pread(cmd: "hydra", argv: argv, nice: 5);
  86. foreach line (split(results))
  87. {
  88.   v = eregmatch(string: line, pattern: 'host:.*(login: *.*)? password: *(.*)$');
  89.   if (! isnull(v))
  90.   {
  91.     p = chomp(v[2]);
  92.     report = strcat(report, p, '\n');
  93.     set_kb_item(name: 'Hydra/vnc/'+port, value: l + '\t' + p);
  94.   }
  95. }
  96.  
  97. if (report)
  98.   security_hole(port: port, 
  99.     data: 'Hydra was able to find the following VNC passwords:\n' + report);
  100.